home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / lists / mint / l_1199 / 1030 < prev    next >
Encoding:
Internet Message Format  |  1994-08-27  |  1.6 KB

  1. From: Torsten Scherer <itschere@techfak.uni-bielefeld.de>
  2. Subject: MiNT 1.10 /dev/* time stamp patch
  3. Date: Thu, 17 Feb 94 17:17:56 +0100
  4.  
  5.  Nice thing so far, but I would really recommend applying the following:
  6.  
  7. --- cut cut cut ---
  8. diff -u4 orig/dos.c ./dos.c
  9. --- orig/dos.c    Thu Feb 17 16:55:02 1994
  10. +++ ./dos.c    Thu Feb 17 18:07:30 1994
  11. @@ -478,10 +478,8 @@
  12.  void
  13.  init_dos()
  14.  {
  15.  /* miscellaneous initialization goes here */
  16. -    timestamp = Tgettime();
  17. -    datestamp = Tgetdate();
  18.  
  19.  /* dos table initialization */
  20.      dos_tab[0x00] = p_term0;
  21.      dos_tab[0x01] = c_conin;
  22. diff -u4 orig/main.c ./main.c
  23. --- orig/main.c    Thu Feb 17 16:55:12 1994
  24. +++ ./main.c    Thu Feb 17 17:57:36 1994
  25. @@ -757,8 +757,12 @@
  26.   */
  27.          has_bconmap = (Bconmap(0) == 0);
  28.      }
  29.  
  30. +/* ts: init these here, so that filesystems can use them */
  31. +    timestamp = Tgettime();
  32. +    datestamp = Tgetdate();
  33. +
  34.  /* initialize memory */
  35.      init_mem();
  36.  
  37.  /* initialize the basic file systems */
  38. --- cut cut cut ---
  39.  
  40.  Otherwise most of the /dev entires look a bit stupid, with 1980 as the year
  41. of their creation and use and so...
  42.  
  43.  I seem to have somehow missed most parts of the repeated-keys-dont-generate-
  44. interrupts story, so I'm a bit struck by surprise with MiNT 1.10's behaviour
  45. with the console. Almost looks like a daemon is polling it. :-) Keys come in
  46. chunks 4-5 times a second, not when they're actually pressed, but just 4-5
  47. times a second. Looks extremely annoying when typing on the command line or
  48. in an editor. :-( Anyone interested in me saying that I don't like this and
  49. heavily prefer the original 1.09 behaviour?
  50.  
  51. cheers,
  52. TeSche
  53.